home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / ucf.postinst < prev    next >
Text File  |  2008-05-30  |  8KB  |  228 lines

  1. #! /bin/sh
  2. #                   -*- Mode: Sh -*- 
  3. # postinst --- 
  4. # Author           : Manoj Srivastava ( srivasta@glaurung.green-gryphon.com ) 
  5. # Created On       : Fri Nov 14 11:25:07 2003
  6. # Created On Node  : glaurung.green-gryphon.com
  7. # Last Modified By : Manoj Srivastava
  8. # Last Modified On : Tue Apr 11 13:20:53 2006
  9. # Last Machine Used: glaurung.internal.golden-gryphon.com
  10. # Update Count     : 14
  11. # Status           : Unknown, Use with caution!
  12. # HISTORY          : 
  13. # Description      : 
  14. # arch-tag: 5401e9ef-39cc-4aee-96a4-61dfb8f32cf7
  15. #  
  16. # This program is free software; you can redistribute it and/or modify
  17. # it under the terms of the GNU General Public License as published by
  18. # the Free Software Foundation; either version 2 of the License, or
  19. # (at your option) any later version.
  20. #
  21. # This program is distributed in the hope that it will be useful,
  22. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24. # GNU General Public License for more details.
  25. #
  26. # You should have received a copy of the GNU General Public License
  27. # along with this program; if not, write to the Free Software
  28. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  29. #
  30.  
  31. # Abort if any command returns an error value
  32. set -e
  33.  
  34. package_name=ucf
  35.  
  36. if [ -z "$package_name" ]; then
  37.     print >&2 "Internal Error. Please report a bug."
  38.     exit 1;
  39. fi
  40.  
  41. # This script is called as the last step of the installation of the
  42. # package.  All the package's files are in place, dpkg has already done
  43. # its automatic conffile handling, and all the packages we depend of
  44. # are already fully installed and configured.
  45. # summary of how this script can be called:
  46. #        * <postinst> `configure' <most-recently-configured-version>
  47. #        * <old-postinst> `abort-upgrade' <new version>
  48. #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
  49. #          <new-version>
  50. #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
  51. #          <failed-install-package> <version> `removing'
  52. #          <conflicting-package> <version>
  53. # for details, see http://www.debian.org/doc/debian-policy/ or
  54. # the debian-policy package
  55. #
  56. # quoting from the policy:
  57. #     Any necessary prompting should almost always be confined to the
  58. #     post-installation script, and should be protected with a conditional
  59. #     so that unnecessary prompting doesn't happen if a package's
  60. #     installation fails and the `postinst' is called with `abort-upgrade',
  61. #     `abort-remove' or `abort-deconfigure'.
  62.  
  63. # The following idempotent stuff doesn't generally need protecting
  64. # against being run in the abort-* cases.
  65.  
  66. # Install info files into the dir file
  67. # install-info --quiet --section "section pattern" "Section Title" \
  68. #              --description="Name of the document" /usr/info/${package_name}.info
  69.  
  70. # Create stub directories under /usr/local
  71. #  if test ! -d /usr/local/lib/${package_name}; then
  72. #    if test ! -d /usr/local/lib; then
  73. #      if mkdir /usr/local/lib; then
  74. #        chown root.staff /usr/local/lib || true
  75. #        chmod 2775 /usr/local/lib || true
  76. #      fi
  77. #    fi
  78. #    if mkdir /usr/local/lib/${package_name}; then
  79. #      chown root.staff /usr/local/lib/${package_name} || true
  80. #      chmod 2775 /usr/local/lib/${package_name} || true
  81. #    fi
  82. # fi
  83.  
  84. # Ensure the menu system is updated
  85. # [ ! -x /usr/bin/update-menus ] || /usr/bin/update-menus
  86.  
  87. # Arrange for a daemon to be started at system boot time
  88. # update-rc.d ${package_name} default >/dev/null
  89.  
  90. case "$1" in
  91.   configure)
  92.     # Configure this package.  If the package must prompt the user for
  93.     # information, do it here.
  94.     # Install emacs lisp files
  95.     #if [ -x  /usr/lib/emacsen-common/emacs-package-install ]; then
  96.     #    /usr/lib/emacsen-common/emacs-package-install $package_name
  97.     #fi
  98.  
  99.  
  100.     # Activate menu-methods script
  101.     # chmod a+x /etc/menu-methods/${package_name}
  102.  
  103.     # Update ld.so cache
  104.     # ldconfig
  105.  
  106.     # Make our version of a program available
  107.     # update-alternatives \
  108.     #       --install /usr/bin/program program /usr/bin/alternative 50 \
  109.     #       --slave /usr/man/man1/program.1.gz program.1.gz \
  110.     #               /usr/man/man1/alternative.1.gz
  111.  
  112.     # Tell ucf that the file in /usr/share/foo is the latest
  113.     # maintainer version, and let it handle how to manage the real
  114.     # confuguration file in /etc. This is how a static configuration
  115.     # file can be handled:
  116.     #if which ucf >/dev/null 2>&1; then
  117.     #  ucf /usr/share/${package_name}/configuration /etc/${package_name}.conf
  118.     #fi
  119.  
  120.     touch /var/lib/ucf/hashfile
  121.     touch /var/lib/ucf/registry
  122.  
  123.     ### We could also do this on the fly. The following is from Tore
  124.     ### Anderson:
  125.     
  126.     # This package uses debconf to ask a question, so source the debconf
  127.     # confmodule as early as possible. However, it does not depend on debconf,
  128.     # so debconf may not be installed.
  129.     if [ -e /usr/share/debconf/confmodule ]; then
  130.         . /usr/share/debconf/confmodule
  131.         db_capb
  132.     fi
  133.  
  134.  
  135.     ### find out what the user answered.
  136.     #  db_get foo/run_on_boot
  137.     #  run_on_boot=$RET
  138.     #  db_stop
  139.  
  140.     ### safely create a temporary file to generate our suggested
  141.     ### configuration file.
  142.     #    tempfile=`tempfile`
  143.     #    cat << _eof > $tempfile
  144.     ### Configuration file for Foo.
  145.  
  146.     ### this was answered by you, the user in a debconf dialogue
  147.     #  RUNONBOOT=$run_on_boot
  148.  
  149.     ### this was not, as it has a sane default value.
  150.     #  COLOUROFSKY=blue
  151.  
  152.     #_eof
  153.  
  154.     ### Note that some versions of debconf do not release stdin, so
  155.     ### the following invocation of ucf may not work, since the stdin
  156.     ### is never coneected to ucfr.
  157.  
  158.     ### now, invoke ucf, which will take care of the rest, and ask
  159.     ### the user if he wants to update his file, if it is modified.
  160.     #ucf $tempfile /etc/foo.conf
  161.  
  162.     ### done! now we'll just clear up our cruft.
  163.     #rm -f $tempfile
  164.  
  165.  
  166.  
  167.     # There are three sub-cases:
  168.     if test "${2+set}" != set; then
  169.       # We're being installed by an ancient dpkg which doesn't remember
  170.       # which version was most recently configured, or even whether
  171.       # there is a most recently configured version.
  172.       :
  173.  
  174.     elif test -z "$2" || test "$2" = "<unknown>"; then
  175.       # The package has not ever been configured on this system, or was
  176.       # purged since it was last configured.
  177.       :
  178.  
  179.     else
  180.       # Version $2 is the most recently configured version of this
  181.       # package.
  182.       :
  183.  
  184.     fi ;;
  185.   abort-upgrade)
  186.     # Back out of an attempt to upgrade this package FROM THIS VERSION
  187.     # to version $2.  Undo the effects of "prerm upgrade $2".
  188.     :
  189.  
  190.     ;;
  191.   abort-remove)
  192.     if test "$2" != in-favour; then
  193.       echo "$0: undocumented call to \`postinst $*'" 1>&2
  194.       exit 0
  195.     fi
  196.     # Back out of an attempt to remove this package, which was due to
  197.     # a conflict with package $3 (version $4).  Undo the effects of
  198.     # "prerm remove in-favour $3 $4".
  199.     :
  200.  
  201.     ;;
  202.   abort-deconfigure)
  203.     if test "$2" != in-favour || test "$5" != removing; then
  204.       echo "$0: undocumented call to \`postinst $*'" 1>&2
  205.       exit 0
  206.     fi
  207.     # Back out of an attempt to deconfigure this package, which was
  208.     # due to package $6 (version $7) which we depend on being removed
  209.     # to make way for package $3 (version $4).  Undo the effects of
  210.     # "prerm deconfigure in-favour $3 $4 removing $6 $7".
  211.     :
  212.  
  213.     ;;
  214.   *) echo "$0: didn't understand being called with \`$1'" 1>&2
  215.      exit 0;;
  216. esac
  217.  
  218. # Install doc base documentation
  219. #if which install-docs >/dev/null 2>&1; then
  220. #  if [ -e /usr/share/doc-base/${package_name} ]; then
  221. #    install-docs -i /usr/share/doc-base/${package_name}
  222. #  fi
  223. #fi
  224.  
  225. exit 0
  226.